home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / time < prev    next >
Text File  |  2001-07-14  |  575b  |  21 lines

  1. SYNOPSIS
  2.         int time()
  3.  
  4. DESCRIPTION
  5.         Return number of seconds ellapsed since 1. Jan 1970, 0.0:0 GMT
  6.  
  7.         The time is based on the time provided by the host system, however,
  8.         the driver makes sure that the result of time() is monotonically
  9.         increasing (ie. changes only to bigger numbers).
  10.  
  11.         The result of time() does not change during the course of a command
  12.         execution.
  13.  
  14. EXAMPLE
  15.         write(ctime(time())+"\n");
  16.         
  17.         Print out the current date and time.
  18.  
  19. SEE ALSO
  20.         ctime(E), gmtime(E), localtime(E), utime(E)
  21.